home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / pxewin.zip / PXEWIN.DOC < prev    next >
Text File  |  1992-02-27  |  3KB  |  72 lines

  1. // PXEWIN - (C) Copyright 1992 by Beam Engineering, INC.
  2.  
  3. Description
  4.  
  5.     This library contains a set of routines that will allow you to
  6.     browse any Paradox table in Windows that is Paradox 3.5 compatible
  7.     or less.  You cannot change the structure of a table or edit a
  8.     record using this library.  However, this libary could provide a
  9.     good start toward writing your own routines to do table edits and
  10.     structure changes.
  11.  
  12.     The library is unique in that it uses list boxes to display field
  13.     data for a table.  You can scroll vertically or horizontally in
  14.     the database.  Up to twenty records can be shown simultaneously on
  15.     the screen.  Several tables can be displayed in seperate windows
  16.     using an MDI interface.  You can save or restore the desktop to it's
  17.     current or last state.  The library is TStreamable and Object
  18.     compatible.
  19.  
  20.     The library is organized into two basic parts:
  21.  
  22.     The first part contains a set of routines that allow class/member
  23.     access and control to the PDOX Engine library.  It contains an
  24.     object layer as a base class for engine function access.  All
  25.     engine classes descend from this object layer.  The descendance are:
  26.  
  27.         PXI.  Initialization class for initializing the engine.
  28.  
  29.         PXTbl.  For table functions.
  30.  
  31.         PXFamily.  For family related functions (copy,delete).
  32.  
  33.         PXRec.  For record functions.
  34.  
  35.         PXField.  For field functions.  Subclasses include classes
  36.         for each type of field.
  37.  
  38.         PXDIS. For setting up the database for display.
  39.  
  40.     The above object class and it's descendance can be used as a bases
  41.     for any engine developement and is not limited to Windows
  42.     applications only.
  43.  
  44.     The second part uses class descendance from the OWL and you must use
  45.     Windows to work with it.  The descendance for the OWL are:
  46.  
  47.         DBDISPLAY.  Sets up the database for display in Windows.
  48.  
  49.         PXScroll.  Redefines the scroller for the browser.
  50.  
  51.         PXListBox.  Redefines list boxes for the browser.
  52.  
  53.         Browse.  Creates and manages the browser window.
  54.  
  55.         BrowserFrame.  Allows browser interface to be MDI complient.
  56.  
  57. Disclosure
  58.  
  59.     You are free to copy and use this program for you own benifit.
  60.  
  61. Comments
  62.  
  63.     You may need to change some of you directory defaults around to 
  64.     include all the libraries you need to link in.  Also, put the
  65.     PXENGWIN.DLL in the same directory you will be running the program
  66.     from.
  67.     
  68.     I would appreciate any comments or criticisms (constructive please).
  69.     You can get in touch with me at:
  70.  
  71.     CIS# 72230,2213
  72.